home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / lib / python2.4 / distutils / unixccompiler.py < prev    next >
Encoding:
Python Source  |  2007-04-12  |  12.2 KB  |  295 lines

  1. """distutils.unixccompiler
  2.  
  3. Contains the UnixCCompiler class, a subclass of CCompiler that handles
  4. the "typical" Unix-style command-line C compiler:
  5.   * macros defined with -Dname[=value]
  6.   * macros undefined with -Uname
  7.   * include search directories specified with -Idir
  8.   * libraries specified with -lllib
  9.   * library search directories specified with -Ldir
  10.   * compile handled by 'cc' (or similar) executable with -c option:
  11.     compiles .c to .o
  12.   * link static library handled by 'ar' command (possibly with 'ranlib')
  13.   * link shared library handled by 'cc -shared'
  14. """
  15.  
  16. __revision__ = "$Id: unixccompiler.py 52231 2006-10-08 17:41:25Z ronald.oussoren $"
  17.  
  18. import os, sys
  19. from types import StringType, NoneType
  20. from copy import copy
  21.  
  22. from distutils import sysconfig
  23. from distutils.dep_util import newer
  24. from distutils.ccompiler import \
  25.      CCompiler, gen_preprocess_options, gen_lib_options
  26. from distutils.errors import \
  27.      DistutilsExecError, CompileError, LibError, LinkError
  28. from distutils import log
  29.  
  30. # XXX Things not currently handled:
  31. #   * optimization/debug/warning flags; we just use whatever's in Python's
  32. #     Makefile and live with it.  Is this adequate?  If not, we might
  33. #     have to have a bunch of subclasses GNUCCompiler, SGICCompiler,
  34. #     SunCCompiler, and I suspect down that road lies madness.
  35. #   * even if we don't know a warning flag from an optimization flag,
  36. #     we need some way for outsiders to feed preprocessor/compiler/linker
  37. #     flags in to us -- eg. a sysadmin might want to mandate certain flags
  38. #     via a site config file, or a user might want to set something for
  39. #     compiling this module distribution only via the setup.py command
  40. #     line, whatever.  As long as these options come from something on the
  41. #     current system, they can be as system-dependent as they like, and we
  42. #     should just happily stuff them into the preprocessor/compiler/linker
  43. #     options and carry on.
  44.  
  45. def _darwin_compiler_fixup(compiler_so, cc_args):
  46.     """
  47.     This function will strip '-isysroot PATH' and '-arch ARCH' from the
  48.     compile flag if the user has specified one of them in extra_compile_flags.
  49.  
  50.     This is needed because '-arch ARCH' adds another architecture to the
  51.     build, without a way to remove an architecture. Furthermore GCC will
  52.     barf if multiple '-isysroot' arguments are present.
  53.     """
  54.     stripArch = stripSysroot = 0
  55.  
  56.     compiler_so = list(compiler_so)
  57.     kernel_version = os.uname()[2] # 8.4.3
  58.     major_version = int(kernel_version.split('.')[0])
  59.  
  60.     if major_version < 8:
  61.         # OSX before 10.4.0, these don't support -arch and -isysroot at
  62.         # all.
  63.         stripArch = stripSysroot = True
  64.     else:
  65.         stripArch = '-arch' in cc_args
  66.         stripSysroot = '-isysroot' in cc_args
  67.  
  68.     if stripArch:
  69.         while 1:
  70.             try:
  71.                 index = compiler_so.index('-arch')
  72.                 # Strip this argument and the next one:
  73.                 del compiler_so[index:index+2]
  74.             except ValueError:
  75.                 break
  76.  
  77.     if stripSysroot:
  78.         try:
  79.             index = compiler_so.index('-isysroot')
  80.             # Strip this argument and the next one:
  81.             del compiler_so[index:index+2]
  82.         except ValueError:
  83.             pass
  84.  
  85.     return compiler_so
  86.  
  87.  
  88. class UnixCCompiler(CCompiler):
  89.  
  90.     compiler_type = 'unix'
  91.  
  92.     # These are used by CCompiler in two places: the constructor sets
  93.     # instance attributes 'preprocessor', 'compiler', etc. from them, and
  94.     # 'set_executable()' allows any of these to be set.  The defaults here
  95.     # are pretty generic; they will probably have to be set by an outsider
  96.     # (eg. using information discovered by the sysconfig about building
  97.     # Python extensions).
  98.     executables = {'preprocessor' : None,
  99.                    'compiler'     : ["cc"],
  100.                    'compiler_so'  : ["cc"],
  101.                    'compiler_cxx' : ["cc"],
  102.                    'linker_so'    : ["cc", "-shared"],
  103.                    'linker_exe'   : ["cc"],
  104.                    'archiver'     : ["ar", "-cr"],
  105.                    'ranlib'       : None,
  106.                   }
  107.  
  108.     if sys.platform[:6] == "darwin":
  109.         executables['ranlib'] = ["ranlib"]
  110.  
  111.     # Needed for the filename generation methods provided by the base
  112.     # class, CCompiler.  NB. whoever instantiates/uses a particular
  113.     # UnixCCompiler instance should set 'shared_lib_ext' -- we set a
  114.     # reasonable common default here, but it's not necessarily used on all
  115.     # Unices!
  116.  
  117.     src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
  118.     obj_extension = ".o"
  119.     static_lib_extension = ".a"
  120.     shared_lib_extension = ".so"
  121.     dylib_lib_extension = ".dylib"
  122.     static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
  123.     if sys.platform == "cygwin":
  124.         exe_extension = ".exe"
  125.  
  126.     def preprocess(self, source,
  127.                    output_file=None, macros=None, include_dirs=None,
  128.                    extra_preargs=None, extra_postargs=None):
  129.         ignore, macros, include_dirs = \
  130.             self._fix_compile_args(None, macros, include_dirs)
  131.         pp_opts = gen_preprocess_options(macros, include_dirs)
  132.         pp_args = self.preprocessor + pp_opts
  133.         if output_file:
  134.             pp_args.extend(['-o', output_file])
  135.         if extra_preargs:
  136.             pp_args[:0] = extra_preargs
  137.         if extra_postargs:
  138.             pp_args.extend(extra_postargs)
  139.         pp_args.append(source)
  140.  
  141.         # We need to preprocess: either we're being forced to, or we're
  142.         # generating output to stdout, or there's a target output file and
  143.         # the source file is newer than the target (or the target doesn't
  144.         # exist).
  145.         if self.force or output_file is None or newer(source, output_file):
  146.             if output_file:
  147.                 self.mkpath(os.path.dirname(output_file))
  148.             try:
  149.                 self.spawn(pp_args)
  150.             except DistutilsExecError, msg:
  151.                 raise CompileError, msg
  152.  
  153.     def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
  154.         compiler_so = self.compiler_so
  155.         if sys.platform == 'darwin':
  156.             compiler_so = _darwin_compiler_fixup(compiler_so, cc_args + extra_postargs)
  157.         try:
  158.             self.spawn(compiler_so + cc_args + [src, '-o', obj] +
  159.                        extra_postargs)
  160.         except DistutilsExecError, msg:
  161.             raise CompileError, msg
  162.  
  163.     def create_static_lib(self, objects, output_libname,
  164.                           output_dir=None, debug=0, target_lang=None):
  165.         objects, output_dir = self._fix_object_args(objects, output_dir)
  166.  
  167.         output_filename = \
  168.             self.library_filename(output_libname, output_dir=output_dir)
  169.  
  170.         if self._need_link(objects, output_filename):
  171.             self.mkpath(os.path.dirname(output_filename))
  172.             self.spawn(self.archiver +
  173.                        [output_filename] +
  174.                        objects + self.objects)
  175.  
  176.             # Not many Unices required ranlib anymore -- SunOS 4.x is, I
  177.             # think the only major Unix that does.  Maybe we need some
  178.             # platform intelligence here to skip ranlib if it's not
  179.             # needed -- or maybe Python's configure script took care of
  180.             # it for us, hence the check for leading colon.
  181.             if self.ranlib:
  182.                 try:
  183.                     self.spawn(self.ranlib + [output_filename])
  184.                 except DistutilsExecError, msg:
  185.                     raise LibError, msg
  186.         else:
  187.             log.debug("skipping %s (up-to-date)", output_filename)
  188.  
  189.     def link(self, target_desc, objects,
  190.              output_filename, output_dir=None, libraries=None,
  191.              library_dirs=None, runtime_library_dirs=None,
  192.              export_symbols=None, debug=0, extra_preargs=None,
  193.              extra_postargs=None, build_temp=None, target_lang=None):
  194.         objects, output_dir = self._fix_object_args(objects, output_dir)
  195.         libraries, library_dirs, runtime_library_dirs = \
  196.             self._fix_lib_args(libraries, library_dirs, runtime_library_dirs)
  197.         # filter out standard library paths, which are not explicitely needed
  198.         # for linking
  199.         library_dirs = [dir for dir in library_dirs
  200.                         if not dir in ('/lib', '/lib64', '/usr/lib', '/usr/lib64')]
  201.         runtime_library_dirs = [dir for dir in runtime_library_dirs
  202.                                 if not dir in ('/lib', '/lib64', '/usr/lib', '/usr/lib64')]
  203.         lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs,
  204.                                    libraries)
  205.         if type(output_dir) not in (StringType, NoneType):
  206.             raise TypeError, "'output_dir' must be a string or None"
  207.         if output_dir is not None:
  208.             output_filename = os.path.join(output_dir, output_filename)
  209.  
  210.         if self._need_link(objects, output_filename):
  211.             ld_args = (objects + self.objects +
  212.                        lib_opts + ['-o', output_filename])
  213.             if debug:
  214.                 ld_args[:0] = ['-g']
  215.             if extra_preargs:
  216.                 ld_args[:0] = extra_preargs
  217.             if extra_postargs:
  218.                 ld_args.extend(extra_postargs)
  219.             self.mkpath(os.path.dirname(output_filename))
  220.             try:
  221.                 if target_desc == CCompiler.EXECUTABLE:
  222.                     linker = self.linker_exe[:]
  223.                 else:
  224.                     linker = self.linker_so[:]
  225.                 if target_lang == "c++" and self.compiler_cxx:
  226.                     linker[0] = self.compiler_cxx[0]
  227.  
  228.                 if sys.platform == 'darwin':
  229.                     linker = _darwin_compiler_fixup(linker, ld_args)
  230.  
  231.                 self.spawn(linker + ld_args)
  232.             except DistutilsExecError, msg:
  233.                 raise LinkError, msg
  234.         else:
  235.             log.debug("skipping %s (up-to-date)", output_filename)
  236.  
  237.     # -- Miscellaneous methods -----------------------------------------
  238.     # These are all used by the 'gen_lib_options() function, in
  239.     # ccompiler.py.
  240.  
  241.     def library_dir_option(self, dir):
  242.         return "-L" + dir
  243.  
  244.     def runtime_library_dir_option(self, dir):
  245.         # XXX Hackish, at the very least.  See Python bug #445902:
  246.         # http://sourceforge.net/tracker/index.php
  247.         #   ?func=detail&aid=445902&group_id=5470&atid=105470
  248.         # Linkers on different platforms need different options to
  249.         # specify that directories need to be added to the list of
  250.         # directories searched for dependencies when a dynamic library
  251.         # is sought.  GCC has to be told to pass the -R option through
  252.         # to the linker, whereas other compilers just know this.
  253.         # Other compilers may need something slightly different.  At
  254.         # this time, there's no way to determine this information from
  255.         # the configuration data stored in the Python installation, so
  256.         # we use this hack.
  257.         compiler = os.path.basename(sysconfig.get_config_var("CC"))
  258.         if sys.platform[:6] == "darwin":
  259.             # MacOSX's linker doesn't understand the -R flag at all
  260.             return "-L" + dir
  261.         elif sys.platform[:5] == "hp-ux":
  262.             return "+s -L" + dir
  263.         elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5":
  264.             return ["-rpath", dir]
  265.         elif compiler[:3] == "gcc" or compiler[:3] == "g++":
  266.             return "-Wl,-R" + dir
  267.         else:
  268.             return "-R" + dir
  269.  
  270.     def library_option(self, lib):
  271.         return "-l" + lib
  272.  
  273.     def find_library_file(self, dirs, lib, debug=0):
  274.         shared_f = self.library_filename(lib, lib_type='shared')
  275.         dylib_f = self.library_filename(lib, lib_type='dylib')
  276.         static_f = self.library_filename(lib, lib_type='static')
  277.  
  278.         for dir in dirs:
  279.             shared = os.path.join(dir, shared_f)
  280.             dylib = os.path.join(dir, dylib_f)
  281.             static = os.path.join(dir, static_f)
  282.             # We're second-guessing the linker here, with not much hard
  283.             # data to go on: GCC seems to prefer the shared library, so I'm
  284.             # assuming that *all* Unix C compilers do.  And of course I'm
  285.             # ignoring even GCC's "-static" option.  So sue me.
  286.             if os.path.exists(dylib):
  287.                 return dylib
  288.             elif os.path.exists(shared):
  289.                 return shared
  290.             elif os.path.exists(static):
  291.                 return static
  292.  
  293.         # Oops, didn't find it in *any* of 'dirs'
  294.         return None
  295.